home *** CD-ROM | disk | FTP | other *** search
/ X'Tasies 5 / X'Tasies 5 - Disc 1.iso / mac / Photo.Dir / 00026.ls < prev    next >
Encoding:
Text File  |  1996-09-02  |  290 b   |  19 lines

  1. global auto_flg
  2.  
  3. on enterFrame
  4.   if not rollOver(the clickOn + 1) then
  5.     set the visible of sprite (the clickOn + 1) to 1
  6.     updateStage()
  7.   end if
  8. end
  9.  
  10. on exitFrame
  11.   if auto_flg = 1 then
  12.     go(the frame + 1)
  13.   else
  14.     if auto_flg = 0 then
  15.       go(the frame)
  16.     end if
  17.   end if
  18. end
  19.